home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / cvsweb_shell.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  76 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7.  
  8. if(description)
  9. {
  10.  script_id(10465);
  11.  script_bugtraq_id(1469);
  12.  script_version ("$Revision: 1.12 $");
  13.  script_cve_id("CVE-2000-0670");
  14.  name["english"] = "CVSWeb 1.80 gives a shell to cvs committers";
  15.  name["francais"] = "CVSWeb 1.80 donne un shell aux commiters";
  16.  script_name(english:name["english"], francais:name["francais"]);
  17.  
  18.  
  19. desc["english"] = "
  20. The remote cvsweb is older or as old as version 1.85.
  21.  
  22. This version allows a cvs committer to execute arbitrary
  23. commands on your server, with the privileges of the
  24. HTTPd process.
  25.  
  26. Solution : upgrade to version 1.86 (http://stud.fh-heilbronn.de/~zeller/cgi/cvsweb.cgi/)
  27. Risk factor : High";
  28.  
  29.  
  30.  
  31. desc["francais"] = "
  32. Le cvsweb distant est plus vieux ou aussi vieux que la
  33. version 1.85.
  34.  
  35. Cette version permet α un commiter d'executer des commandes
  36. arbitraires sur votre serveur, avec les privileges du
  37. serveur web.
  38.  
  39. Solution : mettez ce cgi α jour en version 1.86 (http://stud.fh-heilbronn.de/~zeller/cgi/cvsweb.cgi/)
  40. Facteur de risque : ElevΘ";
  41.  
  42.  script_description(english:desc["english"], francais:desc["francais"]);
  43.  
  44.  summary["english"] = "Checks if CVSWeb is present and gets its version";
  45.  
  46.  script_summary(english:summary["english"]);
  47.  
  48.  script_category(ACT_GATHER_INFO);
  49.   
  50.  script_copyright(english:"This script is Copyright (C) 2000 Renaud Deraison",
  51.         francais:"Ce script est Copyright (C) 2000 Renaud Deraison");
  52.  family["english"] = "CGI abuses";
  53.  family["francais"] = "Abus de CGI";
  54.  script_family(english:family["english"],
  55.          francais:family["francais"]);
  56.  script_dependencie("find_service.nes", "cvsweb_version.nasl");
  57.  script_require_ports("Services/www", 80);
  58.  exit(0);
  59. }
  60.  
  61. #
  62. # The script code starts here
  63. #
  64.  
  65. include("http_func.inc");
  66. port = get_http_port(default:80);
  67.  
  68.  name = string("www/", port, "/cvsweb/version");
  69.  version = get_kb_item(name);
  70.  if(version)
  71.  {
  72.  if(ereg(pattern:"1\.([0-7].*|8[0-5])[^0-9]",
  73.          string:version))
  74.          security_hole(port);
  75.  }
  76.